{% extends 'base.html' %} {% block head_title %}Edit profile{% endblock %} {% block content %}

Edit profile

{% csrf_token %}
{{ form.username.label_tag }} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{{ form.about_me.label_tag }} {% if form.about_me.errors %}
{{ form.about_me.errors }}
{% endif %}
{{ form.image.label_tag }}
{% if form.image.errors %}
{{ form.image.errors }}
{% endif %}

{% endblock content %}